This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
Subject: doc.appendrtitem and "Embedded Image Moved to file: x.jpg"
Feedback Type: Question
Product Area: Notes Client
Technical Area: Application Development
Platform: Windows
Release: 8.5
Reproducible: Always
Hello everyone,
Here is my plan: I want to automatically add signature for each user after sending the message.
I create a rule on the router (document server configuration) that redirects messages to a database which contains an agent.
The agent adds the signature to the body field with the doc.appendrtitem method and moves the document to the base mail.box
In Notes, the agent works and messages arrives in the mail recipients bases with signature (no problem with the pictures).
However, when sent to the internet is made the images in signatures appear as "Embedded Image Moved to file: x.jpg"
How to convert the message to MIME format?
Will it another method (doc.appendrtitem) for two concatenated fields rich text format?
My script is this:
Function Mergebodysign(docprofilesource As NotesDocument,Memo As NotesDocument,flag As String)
On Error GoTo handleError
Set Bodysignature = docprofilesource.Getfirstitem("Signature_Rich")
Set Bodydoc = Memo.Getfirstitem("Body")
If Not Bodysignature Is Nothing Then
Call Bodydoc.Addnewline(1)
Call Bodydoc.Appendrtitem(Bodysignature)
End If
Call Memo.Save(True,True)
Exit Function
HandleError:
Print "Erreur " & Err &" ligne " & Erl
Resume Next
End Function
Feedback number WEBB9ES4YK created by ~Carol Chuboosigen on 12/27/2013
Status: Open
Comments: